home *** CD-ROM | disk | FTP | other *** search
/ American McGee’s Alice Digital Fan Kit / Alice Digital Fan Kit [bin+cue] / ALICE.bin / Dir / alice.dxr / scripts_24_gameinfo rollover.ls < prev    next >
Encoding:
Text File  |  2000-10-08  |  397 b   |  18 lines

  1. global ani_next_marker, ani_screen_marker
  2.  
  3. on mouseWithin me
  4.   cursor(280)
  5.   set the member of sprite the currentSpriteNum to member("gameinfo_rollover_alphas")
  6. end
  7.  
  8. on mouseLeave me
  9.   cursor(-1)
  10.   set the member of sprite the currentSpriteNum to member("gameinfo_norm_alphas")
  11. end
  12.  
  13. on mouseDown me
  14.   puppetSound(3, member("Click2"))
  15.   ani_screen_marker = "game info"
  16.   go(marker("menu_end"))
  17. end
  18.